﻿

body {
    font-family: Arial, sans-serif;
    margin: 7px;
    line-height: 1.6;
}

h1, h2 {
    color: #2c3e50;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid #999;
    padding: 10px;
    text-align: left;
}

th {
    background: #f2f2f2;
}

a {
    color: #0066cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

tr:nth-child(even) {
    background: #f9f9f9;
}

a {
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }


/* Contact section styling */
.contact-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #0d6efd;
    border-radius: 6px;
}

    .contact-item strong {
        display: block;
        font-size: 16px;
        margin-bottom: 6px;
    }

.contact-meta {
    font-size: 14px;
    color: #555;
}

/* Mobile view */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* Outer blue background */
.blue-section {
    background-color: #0d6efd; /* Bootstrap blue */
    padding: 40px 0;
}

/* Inner white content box */
.white-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Make tables responsive */
table {
    max-width: 100%;
}

/* Optional: center tables */
table {
    margin: auto;
}

h3, h5 {
    border-bottom: 2px solid #fd7e14;
    padding-bottom: 6px;
}